寫好爬ptt油價漲跌的爬蟲後,接下來要來處理將訊息透過line發送的這個部分
首先,先查詢使用line notify api的方式:
接著,點帳號下拉選單到個人頁面後,拉到最下方並點擊"LINE Notify API Document"的按鈕
進到文件頁面後,查看發送訊息的api為: [POST] notify-api.line.me/api/notify
request的header需要access token,採bearer token,而要求的參數只有message為必填
https://ithelp.ithome.com.tw/articles/10282029
承上,因為需要access token,所以點上一頁>發行權杖來取得access token
輸入名稱及選擇聊天室,點發行後複製權杖
先使用postman測試看看回傳狀態是否為成功
在Authorization的頁籤,type選擇"Bearer Token"
發送成功後的樣子長這樣:
最後~接著來寫code囉~
import urllib.parse
import requests
import bs4
query = urllib.parse.quote_plus('油價格')
# print(query)
url=f'https://www.ptt.cc/bbs/Lifeismoney/search?q={query}'
def get_data(url:str):
"""
去ptt省錢版get資料來源
"""
res=requests.get(url,headers={
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'
})
# print(res.text)
soup=bs4.BeautifulSoup(res.text,'html.parser')
title=soup.select('.title a')[2].text
# print(title)
return title[5:]
get_data(url)
data=f'{get_data(url)}\n'+' '*13+'中油小幫手~關心您\n'+' '*25+'ξ( ✿>◡❛)~♥'
# print(data)
def postToLine(token:str,data:str):
"""
串接line notify api將組好的訊息post到line中
"""
headers={
"Authorization":"Bearer "+token,
"Content-Type":"application/x-www-form-urlencoded"
}
payload={'message':data}
url="https://notify-api.line.me/api/notify"
#Post封包給LINE notify
resp=requests.post(
url=url,
headers = headers,
params = payload
)
print(f'res status:{resp.status_code}')
print(type(resp))
return resp
token="<你自己的權杖>"
resp=postToLine(token,data)
print(resp.text)